home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_d / mdexp12.zip / UNIT2.DFM / UNIT2.txt
Text File  |  1996-01-10  |  3KB  |  146 lines

  1. object DemoForm1: TDemoForm1
  2.   Left = 220
  3.   Top = 152
  4.   Width = 435
  5.   Height = 360
  6.   Caption = 'Interbase Demo'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   PixelsPerInch = 96
  12.   OnCreate = FormCreate
  13.   TextHeight = 16
  14.   object MDExplorer1: TMDExplorer
  15.     Left = 0
  16.     Top = 22
  17.     Width = 427
  18.     Height = 311
  19.     OutlineStyle = osPlusMinusText
  20.     Options = [ooDrawFocusRect]
  21.     ItemHeight = 16
  22.     Align = alClient
  23.     TabOrder = 1
  24.     ItemSeparator = '\'
  25.     ScrollBars = ssHorizontal
  26.     Active = False
  27.     DataSource1 = DataSource1
  28.     DataSource2 = DataSource2
  29.     DataSource3 = DataSource3
  30.     DescriptionLabel = Label1
  31.     FieldSeparator = '∩┐╜'
  32.   end
  33.   object Panel1: TPanel
  34.     Left = 0
  35.     Top = 0
  36.     Width = 427
  37.     Height = 22
  38.     Align = alTop
  39.     TabOrder = 2
  40.     object Label1: TLabel
  41.       Left = 3
  42.       Top = 3
  43.       Width = 412
  44.       Height = 16
  45.       AutoSize = False
  46.     end
  47.   end
  48.   object Connections1: TConnections
  49.     Left = 192
  50.     Top = 33
  51.     Width = 205
  52.     Height = 256
  53.     BevelOuter = bvLowered
  54.     Caption = 'Interbase Model'
  55.     Font.Color = clWindowText
  56.     Font.Height = -8
  57.     Font.Name = 'Arial'
  58.     Font.Style = []
  59.     ParentFont = False
  60.     TabOrder = 0
  61.     Visible = False
  62.     CopyToClipboard = False
  63.   end
  64.   object Table1: TTable
  65.     Active = True
  66.     DatabaseName = 'IBLOCAL'
  67.     IndexFieldNames = 'DEPARTMENT'
  68.     TableName = 'DEPARTMENT'
  69.     Left = 228
  70.     Top = 69
  71.     object Table1DEPARTMENT: TStringField
  72.       FieldName = 'DEPARTMENT'
  73.       Required = True
  74.       Size = 25
  75.     end
  76.     object Table1DEPT_NO: TStringField
  77.       FieldName = 'DEPT_NO'
  78.       Required = True
  79.       Size = 3
  80.     end
  81.   end
  82.   object DataSource1: TDataSource
  83.     DataSet = Table1
  84.     Left = 321
  85.     Top = 69
  86.   end
  87.   object Table2: TTable
  88.     Active = True
  89.     DatabaseName = 'IBLOCAL'
  90.     IndexFieldNames = 'DEPT_NO'
  91.     MasterFields = 'DEPT_NO'
  92.     MasterSource = DataSource1
  93.     TableName = 'EMPLOYEE'
  94.     Left = 228
  95.     Top = 144
  96.     object Table2FULL_NAME: TStringField
  97.       FieldName = 'FULL_NAME'
  98.       Size = 37
  99.     end
  100.     object Table2EMP_NO: TSmallintField
  101.       FieldName = 'EMP_NO'
  102.       Required = True
  103.     end
  104.     object Table2DEPT_NO: TStringField
  105.       FieldName = 'DEPT_NO'
  106.       Required = True
  107.       Visible = False
  108.       Size = 3
  109.     end
  110.   end
  111.   object DataSource2: TDataSource
  112.     DataSet = Table2
  113.     Left = 321
  114.     Top = 144
  115.   end
  116.   object Table3: TTable
  117.     Active = True
  118.     DatabaseName = 'IBLOCAL'
  119.     IndexFieldNames = 'EMP_NO'
  120.     MasterFields = 'EMP_NO'
  121.     MasterSource = DataSource2
  122.     TableName = 'SALARY_HISTORY'
  123.     Left = 228
  124.     Top = 216
  125.     object Table3CHANGE_DATE: TDateTimeField
  126.       FieldName = 'CHANGE_DATE'
  127.       Required = True
  128.       DisplayFormat = 'mmm dd yyyy'
  129.     end
  130.     object Table3EMP_NO: TSmallintField
  131.       FieldName = 'EMP_NO'
  132.       Required = True
  133.       Visible = False
  134.     end
  135.     object Table3NEW_SALARY: TFloatField
  136.       FieldName = 'NEW_SALARY'
  137.       Currency = True
  138.     end
  139.   end
  140.   object DataSource3: TDataSource
  141.     DataSet = Table3
  142.     Left = 324
  143.     Top = 216
  144.   end
  145. end
  146.